home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 6
/
FM Towns Free Software Collection 6.iso
/
ms_dos
/
gds
/
source
/
gds225.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Windows-1254 (detected)
Wrap
C/C++ Source or Header
|
1993-07-08
|
359 b
|
20 lines
/*
*
* GDS225 : 境界線種
*
*/
#include <stdio.h>
#include <dos.h>
unsigned char *GDS_append(unsigned char *wp,unsigned int size);
void GDS_boundary_style(unsigned char *wp,unsigned char style) {
wp=GDS_append(wp,4);
*(unsigned int *)(wp+0)=0x5000+26*32+2;
*(unsigned char *)(wp+2)=style;
*(unsigned char *)(wp+3)=0;
}